ae32049501e43e5ee96c4e09a8b23c2da5816b3f,engine/src/org/pentaho/di/trans/steps/cubeinput/CubeInputMeta.java,CubeInputMeta,readRep,#Repository#IMetaStore#ObjectId#List#,195
Before Change
public void readRep( Repository rep, IMetaStore metaStore, ObjectId id_step, List<DatabaseMeta> databases ) throws KettleException {
try {
filename = rep.getStepAttributeString( id_step, "file_name" );
rowLimit = (int) rep.getStepAttributeInteger( id_step, "limit" );
addfilenameresult = rep.getStepAttributeBoolean( id_step, "addfilenameresult" );
} catch ( Exception e ) {
After Change
rowLimit = rep.getStepAttributeString( id_step, "limit" );
} catch ( KettleException readOldAttributeType ) {
// PDI-12897
rowLimit = String.valueOf( rep.getStepAttributeInteger( id_step, "limit" ) );
}
addfilenameresult = rep.getStepAttributeBoolean( id_step, "addfilenameresult" );